From 384b9eed796f03b98239cc730a18a6fead0dfa16 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 20 Dec 2024 13:05:10 -0500 Subject: [PATCH] Update actions --- .github/workflows/ci-fuzz.yml | 4 ++-- .github/workflows/cmake.yml | 8 ++++---- .github/workflows/make.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-fuzz.yml b/.github/workflows/ci-fuzz.yml index afd79be..268eb1e 100644 --- a/.github/workflows/ci-fuzz.yml +++ b/.github/workflows/ci-fuzz.yml @@ -16,8 +16,8 @@ jobs: fuzz-seconds: 600 dry-run: false - name: Upload Crash - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 if: failure() with: name: artifacts - path: ./out/artifacts \ No newline at end of file + path: ./out/artifacts diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2881440..b540e35 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -17,7 +17,7 @@ jobs: runs-on: ${{ matrix.os }} name: ${{ matrix.os }} - shared=${{ matrix.shared }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build run: | mkdir build @@ -27,7 +27,7 @@ jobs: run: ctest --test-dir build -V - name: Upload shared lib if: matrix.shared == 'ON' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }} path: | @@ -45,7 +45,7 @@ jobs: run: shell: msys2 {0} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: msys2/setup-msys2@v2 with: install: gcc make mingw-w64-x86_64-cmake @@ -58,7 +58,7 @@ jobs: run: ctest --test-dir build -V - name: Upload shared lib if: matrix.shared == 'ON' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: windows-mingw64 path: build/libutf8proc.* diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index acc975d..05b0653 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.os }} name: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # TODO: update makefile to check MANIFEST - name: Install dependencies (MacOS) if: runner.os == 'macOS' @@ -35,7 +35,7 @@ jobs: - name: Make lib run: make - name: Upload shared lib - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: make-${{ matrix.os }} path: libutf8proc.* -- 2.30.2